shift$74535$ - перевод на греческий
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

shift$74535$ - перевод на греческий

BIT-LEVEL COMPUTER OPERATION
Logical shift left; Shift left; Shift Left; Logical shift right; Logical left shift; Logical right shift
  • Logical left shift one bit
  • Logical right shift one bit

shift      
v. μετατοπίζω, μεταλλάσσω, μετακινώ, μετακινούμαι, υπεκφεύγω
shift work         
  • A clock-based device for recording workers' working hours, from the  beginning of 20 century. Exhibit of the [[National Polytechnical Museum]] in Sofia, Bulgaria
  • 4 o'clock shift at the Ford Motor Company assembly plant in Detroit, Michigan, 1910s
  • Children going to a 12-hour night shift in the United States, 1908
  • Miners waiting to go to work on the 4 P.M. to midnight shift at the Virginia-Pocahontas Coal Co., 1974
  • access-date=2019-04-08}}</ref>
  • A video on the health effects of shift work
EMPLOYMENT PRACTICE DESIGNED TO MAKE USE OF, OR PROVIDE SERVICE ACROSS, PART OF OR ALL 24 HOURS OF EACH DAY OF THE WEEK
Work shift; First shift; Third shift; Shift workers; Shift-work; Second shift; 2nd shift; Workshift; Night working; 3rd shift; Dayshift; Day-shift; Day shifts; Dayshifts; Day-shifts; Shift-Work; Shiftwork; Shift working; Shift worker; Shift (work); Night worker; Working nights; Night shifts; Cognitive effects of shift work; Working Nights
δουλειά με βάρδιες
gear lever         
  • crash gearbox]]
  • Interior of a 2010 [[Jaguar XF]]; with a rotary knob style gear selector on the central console
  • 125px
  • [[Fiat 500L]] manual gear shift with 6 speeds
  • 125px
  • 125px
  • 125px
  • 125px
  • 125px
  • W 120-series]] Mercedes-Benz 180
  • A knob on a [[Peugeot 206]] showing the driver the position of each gear
  • Gear stick of [[Rolls-Royce Phantom I]] Open Tourer Windovers (1926)
  • Dog-leg gear lever in a [[Porsche-Diesel 218]] (1959)
LEVER FOR SHIFTING GEARS MANUALLY
Shift stick; Gear selector; Gear shift knob; Gear shift; Gearshift; Gear lever; Gearstick; Shifter knob; Gear shifter; Three on the tree; H-shifter; H-pattern; Gear-shift; Shift knob; Gear knob; Stick shift knob; Shift knobs; Shift lever; Weighted gear knob; Manual shift lever; Weighted Gear Knob; Weighted shift knob; Shift Knob; Granny gear; Four on the floor (transmission)
λεβιές ταχύτητων

Определение

shift key
n. (on a typewriter) to press a shift key

Википедия

Logical shift

In computer science, a logical shift is a bitwise operation that shifts all the bits of its operand. The two base variants are the logical left shift and the logical right shift. This is further modulated by the number of bit positions a given value shall be shifted, such as shift left by 1 or shift right by n. Unlike an arithmetic shift, a logical shift does not preserve a number's sign bit or distinguish a number's exponent from its significand (mantissa); every bit in the operand is simply moved a given number of bit positions, and the vacant bit-positions are filled, usually with zeros, and possibly ones (contrast with a circular shift).

A logical shift is often used when its operand is being treated as a sequence of bits instead of as a number.

Logical shifts can be useful as efficient ways to perform multiplication or division of unsigned integers by powers of two. Shifting left by n bits on a signed or unsigned binary number has the effect of multiplying it by 2n. Shifting right by n bits on an unsigned binary number has the effect of dividing it by 2n (rounding towards 0).

Logical right shift differs from arithmetic right shift. Thus, many languages have different operators for them. For example, in Java and JavaScript, the logical right shift operator is >>>, but the arithmetic right shift operator is >>. (Java has only one left shift operator (<<), because left shift via logic and arithmetic have the same effect.)

The programming languages C, C++, and Go, however, have only one right shift operator, >>. Most C and C++ implementations, and Go, choose which right shift to perform depending on the type of integer being shifted: signed integers are shifted using the arithmetic shift, and unsigned integers are shifted using the logical shift.

All currently relevant C standards (ISO/IEC 9899:1999 to 2011) leave a definition gap for cases where the number of shifts is equal to or bigger than the number of bits in the operands in a way that the result is undefined. This helps allow C compilers to emit efficient code for various platforms by allowing direct use of the native shift instructions which have differing behavior. For example, shift-left-word in PowerPC chooses the more-intuitive behavior where shifting by the bit width or above gives zero, whereas SHL in x86 chooses to mask the shift amount to the lower bits to reduce the maximum execution time of the instructions, and as such a shift by the bit width doesn't change the value.

Some languages, such as the .NET Framework and LLVM, also leave shifting by the bit width and above unspecified (.NET) or undefined (LLVM). Others choose to specify the behavior of their most common target platforms, such as C# which specifies the x86 behavior.